.SettingsPage {
    align-items: flex-start;
}

.txtUnits {
    align-self: flex-start;
    position: relative;
}

.MetricsContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.battery-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.battery-bar-fill {
    width: 75%;
    height: 100%;
    background-color: #4caf50;
    position: relative;
    transition: width 0.5s ease-in-out;
}

.battery-bar-text {
    color: white;
    font-weight: bold;
    position: absolute;
    width: 100%;
    text-align: center;
}

.Note {
    margin-left: 23px;
}

@media (min-width: 0px) { 
    .txtUnits {
        margin-top: 10px;
    }

    .KlmsContainer,
    .MilesContainer {
        padding: 5px;
        margin-bottom: 15px;
        border-radius: 5px;
        max-width: 100%;
    }

    .KlmsContainer p,
    .MilesContainer p {
        font-weight: 600;
        margin: 0;
    }

    .battery-bar-container {
        height: 30px;
        border-radius: 10px;
        margin: 5px auto;
    }
    
    .battery-bar-fill {
        border-radius: 10px 0 0 10px;
    }
    
    .battery-bar-text {
        line-height: 31px;
    }

    .btn-logout-settings {
        margin-left: 30px;
        margin-top: 25px;
    }
}